home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Controls / Visual Basic Controls.iso / vbcontrol / sgwnd10 / frmtest3.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1998-07-22  |  1.3 KB  |  48 lines

  1. VERSION 5.00
  2. Begin VB.Form frmTest3 
  3.    AutoRedraw      =   -1  'True
  4.    BorderStyle     =   0  'None
  5.    ClientHeight    =   2652
  6.    ClientLeft      =   0
  7.    ClientTop       =   0
  8.    ClientWidth     =   3468
  9.    ControlBox      =   0   'False
  10.    LinkTopic       =   "Form2"
  11.    MaxButton       =   0   'False
  12.    MinButton       =   0   'False
  13.    ScaleHeight     =   2652
  14.    ScaleWidth      =   3468
  15.    ShowInTaskbar   =   0   'False
  16.    Begin VB.CommandButton cmdSet 
  17.       Caption         =   "&Change Text"
  18.       Height          =   372
  19.       Left            =   1920
  20.       TabIndex        =   2
  21.       Top             =   780
  22.       Width           =   1392
  23.    End
  24.    Begin VB.TextBox txtText 
  25.       Height          =   312
  26.       Left            =   60
  27.       TabIndex        =   0
  28.       Top             =   300
  29.       Width           =   3252
  30.    End
  31.    Begin VB.Label lbl 
  32.       Caption         =   "Window text:"
  33.       Height          =   252
  34.       Left            =   60
  35.       TabIndex        =   1
  36.       Top             =   60
  37.       Width           =   1992
  38.    End
  39. Attribute VB_Name = "frmTest3"
  40. Attribute VB_GlobalNameSpace = False
  41. Attribute VB_Creatable = False
  42. Attribute VB_PredeclaredId = True
  43. Attribute VB_Exposed = False
  44. Option Explicit
  45. Private Sub cmdSet_Click()
  46.    frmMain.g_wndTest.Text = txtText
  47. End Sub
  48.